home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 12 - 1996 / 12.12 Dec 96 / Async I⁄O Code / Sources / AsyncPrefsDialog.h next >
Encoding:
Text File  |  1996-03-10  |  574 b   |  24 lines  |  [TEXT/CWIE]

  1. // File: AsyncPrefsDialog.h
  2.  
  3. #ifndef __ASYNCPREFSDIALOG__
  4. #define __ASYNCPREFSDIALOG__
  5.  
  6. #define thisDialogID 301
  7.  
  8. int       DoDialog(void);
  9. DialogPtr OpenThisDialog(void);
  10. void      CloseThisDialog(DialogPtr dlog);
  11. void      DoDialogUpdate(DialogPtr dlog);
  12. void      DoDialogActivate(DialogPtr dlog, int activ);
  13. void      DoDialogContent(DialogPtr dlog, EventRecord *evt);
  14. int       DoDialogItem(DialogPtr dlog, short itemHit);
  15.  
  16. void ReadAsyncPrefs(void);
  17. void WriteAsyncPrefs(void);
  18.  
  19. extern    long    gNumIterations;
  20. extern    Str63    gNameString;
  21. extern    Boolean    gRunRandom;
  22.  
  23. #endif
  24.